summaryrefslogtreecommitdiffstats
path: root/tests/component/applypatch_test.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2016-11-03 19:24:53 +0100
committerandroid-build-merger <android-build-merger@google.com>2016-11-03 19:24:53 +0100
commitf35ce240a136f6e728731fc45aa4bd663bd8240f (patch)
tree2d5e3fe8115569dd4e68813f5c9d984dbee28697 /tests/component/applypatch_test.cpp
parentMerge "applypatch: Add testcases for applypatch executable." am: 5696526ba4 (diff)
parentMerge "tests: Set up testdata path for continuous native tests." (diff)
downloadandroid_bootable_recovery-f35ce240a136f6e728731fc45aa4bd663bd8240f.tar
android_bootable_recovery-f35ce240a136f6e728731fc45aa4bd663bd8240f.tar.gz
android_bootable_recovery-f35ce240a136f6e728731fc45aa4bd663bd8240f.tar.bz2
android_bootable_recovery-f35ce240a136f6e728731fc45aa4bd663bd8240f.tar.lz
android_bootable_recovery-f35ce240a136f6e728731fc45aa4bd663bd8240f.tar.xz
android_bootable_recovery-f35ce240a136f6e728731fc45aa4bd663bd8240f.tar.zst
android_bootable_recovery-f35ce240a136f6e728731fc45aa4bd663bd8240f.zip
Diffstat (limited to 'tests/component/applypatch_test.cpp')
-rw-r--r--tests/component/applypatch_test.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/component/applypatch_test.cpp b/tests/component/applypatch_test.cpp
index f95ebed5d..1a0b19113 100644
--- a/tests/component/applypatch_test.cpp
+++ b/tests/component/applypatch_test.cpp
@@ -37,9 +37,6 @@
#include "common/test_constants.h"
#include "print_sha1.h"
-static const std::string DATA_PATH = getenv("ANDROID_DATA");
-static const std::string TESTDATA_PATH = "/recovery/testdata";
-
static void sha1sum(const std::string& fname, std::string* sha1, size_t* fsize = nullptr) {
ASSERT_NE(nullptr, sha1);
@@ -72,10 +69,6 @@ static bool file_cmp(const std::string& f1, const std::string& f2) {
return c1 == c2;
}
-static std::string from_testdata_base(const std::string& fname) {
- return DATA_PATH + NATIVE_TEST_PATH + TESTDATA_PATH + "/" + fname;
-}
-
class ApplyPatchTest : public ::testing::Test {
public:
static void SetUpTestCase() {