blob: f7c6557c16e54f080e4b9253de4868bd4febb0df [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "gtest/gtest.h"
int main(int argc, char** argv) {
testing::InitGoogleTest(&argc, argv);
// TODO(mpuryear): create a '--stress' switch here, to execute a set of
// longhaul resource-exhaustion-focused tests on these interfaces.
int result = RUN_ALL_TESTS();
return result;
}