| OLD | NEW |
| (Empty) |
| 1 // 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 | |
| 15 using std::string; | |
| 16 using std::vector; | |
| 17 | |
| 18 namespace chromeos_update_engine { | |
| 19 | |
| 20 class SetBootableFlagActionTest : public ::testing::Test {}; | |
| 21 | |
| 22 // These disabled tests are a reminder this needs to change. | |
| 23 TEST_F(SetBootableFlagActionTest, DISABLED_SimpleTest) { | |
| 24 // TODO(adlr): find a way to test this object. | |
| 25 } | |
| 26 | |
| 27 TEST_F(SetBootableFlagActionTest, DISABLED_BadDeviceTest) { | |
| 28 } | |
| 29 | |
| 30 TEST_F(SetBootableFlagActionTest, DISABLED_NoInputObjectTest) { | |
| 31 } | |
| 32 | |
| 33 } // namespace chromeos_update_engine | |
| OLD | NEW |