blob: cec581f34646d9c24dda4be7c7ad0236ba92a1e2 [file] [log] [blame]
// Copyright 2017 The Chromium 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 "base/bind.h"
#include "base/test/launcher/unit_test_launcher.h"
#include "chrome/browser/vr/test/vr_gl_test_suite.h"
int main(int argc, char** argv) {
vr::VrGlTestSuite test_suite(argc, argv);
return base::LaunchUnitTestsSerially(
argc, argv,
base::BindRepeating(&vr::VrGlTestSuite::Run,
base::Unretained(&test_suite)));
}