summaryrefslogtreecommitdiff
path: root/tools/bit/main.cpp
diff options
context:
space:
mode:
authorChih-hung Hsieh <chh@google.com>2017-10-16 19:50:38 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-10-16 19:50:38 +0000
commitdecc397b267ca0769a2232ebaee6580bb082e0d1 (patch)
tree4c53ec713713792d1f276cb0a04498ba44abbf9d /tools/bit/main.cpp
parent4f4d64659abc0db7c3f9dc5a9ae3f14e61c6776b (diff)
parent9f004b17523494a0b123a0034742c47ff2880428 (diff)
Merge "Use -Werror in frameworks/base" am: 16fbd3a1d8 am: 0bfb717a37
am: 9f004b1752 Change-Id: I6517ee1689b0247caf830a6c3528bfa9bcf91f75
Diffstat (limited to 'tools/bit/main.cpp')
-rw-r--r--tools/bit/main.cpp14
1 files changed, 11 insertions, 3 deletions
diff --git a/tools/bit/main.cpp b/tools/bit/main.cpp
index 91ca5143965e..a8a4cfcab351 100644
--- a/tools/bit/main.cpp
+++ b/tools/bit/main.cpp
@@ -596,6 +596,15 @@ check_device_property(const string& property, const string& expected)
}
}
+static void
+chdir_or_exit(const char *path) {
+ // TODO: print_command("cd", path);
+ if (0 != chdir(path)) {
+ print_error("Error: Could not chdir: %s", path);
+ exit(1);
+ }
+}
+
/**
* Run the build, install, and test actions.
*/
@@ -618,8 +627,7 @@ run_phases(vector<Target*> targets, const Options& options)
const string buildId = get_build_var(buildTop, "BUILD_ID", false);
const string buildOut = get_out_dir();
- // TODO: print_command("cd", buildTop.c_str());
- chdir(buildTop.c_str());
+ chdir_or_exit(buildTop.c_str());
// Get the modules for the targets
map<string,Module> modules;
@@ -999,7 +1007,7 @@ run_tab_completion(const string& word)
const string buildProduct = get_required_env("TARGET_PRODUCT", false);
const string buildOut = get_out_dir();
- chdir(buildTop.c_str());
+ chdir_or_exit(buildTop.c_str());
string buildDevice = sniff_device_name(buildOut, buildProduct);