Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ StatusOr<std::string> CreateTempFile(
std::string const& directory,
google::cloud::internal::DefaultPRNG& generator, std::uintmax_t size_left) {
std::size_t const single_buf_size = 4 * 1024 * 1024;
auto const file_name = directory + (directory.empty() ? "" : "/") +
gcs_bm::MakeRandomFileName(generator);
auto file_name = directory + (directory.empty() ? "" : "/") +
gcs_bm::MakeRandomFileName(generator);

std::string random_data = gcs_bm::MakeRandomData(generator, single_buf_size);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ void AutoRun(std::vector<std::string> const& argv) {

} // namespace

int main(int argc, char* argv[]) {
int main(int argc, char* argv[]) { // NOLINT(bugprone-exception-escape)
using google::cloud::testing_util::Example;
namespace storagecontrol = google::cloud::storagecontrol_v2;
using ClientCommand = std::function<void(storagecontrol::StorageControlClient,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ void AutoRun(std::vector<std::string> const& argv) {

} // namespace

int main(int argc, char* argv[]) {
int main(int argc, char* argv[]) { // NOLINT(bugprone-exception-escape)
using google::cloud::testing_util::Example;
namespace storagecontrol = google::cloud::storagecontrol_v2;
using ClientCommand = std::function<void(storagecontrol::StorageControlClient,
Expand Down
Loading