summaryrefslogtreecommitdiffstats
path: root/tests/unit/screen_ui_test.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2018-07-13 19:16:43 +0200
committerandroid-build-merger <android-build-merger@google.com>2018-07-13 19:16:43 +0200
commitd8e96f4b4d38b3ef7385d4f4e022e58439a21b47 (patch)
tree3e6a81eb61f07c1dd70dfed0b3cfbaf38071b17e /tests/unit/screen_ui_test.cpp
parentMerge "applypatch: Fix the return type of FreeSpaceForFile()." (diff)
parentMerge "tests: Clean up the temporary dirs post-run." (diff)
downloadandroid_bootable_recovery-d8e96f4b4d38b3ef7385d4f4e022e58439a21b47.tar
android_bootable_recovery-d8e96f4b4d38b3ef7385d4f4e022e58439a21b47.tar.gz
android_bootable_recovery-d8e96f4b4d38b3ef7385d4f4e022e58439a21b47.tar.bz2
android_bootable_recovery-d8e96f4b4d38b3ef7385d4f4e022e58439a21b47.tar.lz
android_bootable_recovery-d8e96f4b4d38b3ef7385d4f4e022e58439a21b47.tar.xz
android_bootable_recovery-d8e96f4b4d38b3ef7385d4f4e022e58439a21b47.tar.zst
android_bootable_recovery-d8e96f4b4d38b3ef7385d4f4e022e58439a21b47.zip
Diffstat (limited to 'tests/unit/screen_ui_test.cpp')
-rw-r--r--tests/unit/screen_ui_test.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/unit/screen_ui_test.cpp b/tests/unit/screen_ui_test.cpp
index 2f4b7b09b..4c0a868f0 100644
--- a/tests/unit/screen_ui_test.cpp
+++ b/tests/unit/screen_ui_test.cpp
@@ -446,8 +446,9 @@ TEST_F(ScreenRecoveryUITest, LoadAnimation_MissingAnimation) {
RETURN_IF_NO_GRAPHICS;
ASSERT_TRUE(ui_->Init(kTestLocale));
- TemporaryDir resource_dir;
- Paths::Get().set_resource_dir(resource_dir.path);
+ // We need a dir that doesn't contain any animation. However, using TemporaryDir will give
+ // leftovers since this is a death test where TemporaryDir::~TemporaryDir() won't be called.
+ Paths::Get().set_resource_dir("/proc/self");
::testing::FLAGS_gtest_death_test_style = "threadsafe";
ASSERT_EXIT(ui_->RunLoadAnimation(), ::testing::KilledBySignal(SIGABRT), "");