blob: d2a211b98990fc2ea470eecdbda86a6c9428f6cd [file] [log] [blame]
adlr@google.com3defe6a2009-12-04 20:57:17 +00001// Copyright (c) 2009 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include <sys/stat.h>
6#include <sys/types.h>
7#include <unistd.h>
8#include <string>
9#include <vector>
10#include <gtest/gtest.h>
11#include "update_engine/set_bootable_flag_action.h"
12#include "update_engine/test_utils.h"
13#include "update_engine/utils.h"
14
15using std::string;
16using std::vector;
17
18namespace chromeos_update_engine {
19
Andrew de los Reyesf9714432010-05-04 10:21:23 -070020class SetBootableFlagActionTest : public ::testing::Test {};
adlr@google.com3defe6a2009-12-04 20:57:17 +000021
Andrew de los Reyesf9714432010-05-04 10:21:23 -070022// These disabled tests are a reminder this needs to change.
23TEST_F(SetBootableFlagActionTest, DISABLED_SimpleTest) {
24 // TODO(adlr): find a way to test this object.
adlr@google.com3defe6a2009-12-04 20:57:17 +000025}
26
Andrew de los Reyesf9714432010-05-04 10:21:23 -070027TEST_F(SetBootableFlagActionTest, DISABLED_BadDeviceTest) {
adlr@google.com3defe6a2009-12-04 20:57:17 +000028}
29
Andrew de los Reyesf9714432010-05-04 10:21:23 -070030TEST_F(SetBootableFlagActionTest, DISABLED_NoInputObjectTest) {
adlr@google.com3defe6a2009-12-04 20:57:17 +000031}
32
33} // namespace chromeos_update_engine