summaryrefslogtreecommitdiffstats
path: root/runtime/parsed_options_test.cc
diff options
context:
space:
mode:
authorIgor Murashkin <iam@google.com>2015-02-04 17:30:43 -0800
committerIgor Murashkin <iam@google.com>2015-02-04 17:32:05 -0800
commiteb6c7c23a8065af665e71f3408980bacd8ecc529 (patch)
treeb1eda7fb58ca02d9539c27774ef2bb044b9369f0 /runtime/parsed_options_test.cc
parentedf45678f133ce51d7aff43be68d9be3936ffca2 (diff)
downloadart-eb6c7c23a8065af665e71f3408980bacd8ecc529.tar.gz
art-eb6c7c23a8065af665e71f3408980bacd8ecc529.tar.bz2
art-eb6c7c23a8065af665e71f3408980bacd8ecc529.zip
art: Try to fix parsed_options_test on the build server
(It works fine locally because environment variables are defined differently) Also some minor cleanup elsewhere pointed out in the previous code review. Change-Id: I80650d2be6ce467b838db85eb130a0020d7c1480
Diffstat (limited to 'runtime/parsed_options_test.cc')
-rw-r--r--runtime/parsed_options_test.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/runtime/parsed_options_test.cc b/runtime/parsed_options_test.cc
index f68b6329c4..79dc2fa626 100644
--- a/runtime/parsed_options_test.cc
+++ b/runtime/parsed_options_test.cc
@@ -22,7 +22,12 @@
namespace art {
-class ParsedOptionsTest : public ::testing::Test {};
+class ParsedOptionsTest : public ::testing::Test {
+ public:
+ static void SetUpTestCase() {
+ CommonRuntimeTest::SetUpAndroidRoot();
+ }
+};
TEST_F(ParsedOptionsTest, ParsedOptions) {
void* test_vfprintf = reinterpret_cast<void*>(0xa);