//===- ArchiveTest.cpp ----------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
using namespace llvm;
using namespace object;
using namespace testing;
static const char ArchiveWithMember = "!<arch>\n" // Global header
"test/ " // Member name
"0 " // Timestamp
"0 " // Owner ID
"0 " // Group ID
"0 " // File mode
"9999999999" // Size
"`\n";
static const char ThinArchiveWithMember = "!<thin>\n" // Global header
"test/ " // Member name
"0 " // Timestamp
"0 " // Owner ID
"0 " // Group ID
"0 " // File mode
"9999999999" // Size
"`\n";
static const uint64_t MemberSize = 9999999999ull;
;