summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYabin Cui <yabinc@google.com>2020-02-18 14:32:33 -0800
committerYabin Cui <yabinc@google.com>2020-07-16 17:23:22 +0000
commit96765bda380b318eeaa49441d911d8a64c8e1ffc (patch)
treec8882dcd57cb30a3bb4a65b8363f2a7969c647e7
parent14b2e2dff4add893cbabe76e149342280f97aa6a (diff)
downloadextras-96765bda380b318eeaa49441d911d8a64c8e1ffc.tar.gz
simpleperf: force testing run-as and app_runner separately.
In CtsSimpleperfTestCases, two methods are used to record an app: through run-as and through simpleperf_app_runner. Tests don't fail unless both methods fail. This can't detect the situation when only one method fails. So change to test run-as and simpleperf_app_runner separately. Bug: 154862631 Test: run CtsSimpleperfTestCases. Change-Id: I023aa7793f748e695f809c153ed23f006e13ea12 (cherry picked from commit 94c148de3309a5510dc3d2cf820d2cb51eb07357)
-rw-r--r--simpleperf/cmd_record_test.cpp8
-rw-r--r--simpleperf/cmd_stat_test.cpp4
-rw-r--r--simpleperf/environment.cpp27
-rw-r--r--simpleperf/environment.h1
4 files changed, 32 insertions, 8 deletions
diff --git a/simpleperf/cmd_record_test.cpp b/simpleperf/cmd_record_test.cpp
index b0c74674..7ae589d7 100644
--- a/simpleperf/cmd_record_test.cpp
+++ b/simpleperf/cmd_record_test.cpp
@@ -792,13 +792,15 @@ static void TestRecordingApps(const std::string& app_name) {
}
TEST(record_cmd, app_option_for_debuggable_app) {
- TEST_REQUIRE_HW_COUNTER();
TEST_REQUIRE_APPS();
+ SetRunInAppToolForTesting(true, false);
+ TestRecordingApps("com.android.simpleperf.debuggable");
+ SetRunInAppToolForTesting(false, true);
TestRecordingApps("com.android.simpleperf.debuggable");
}
TEST(record_cmd, app_option_for_profileable_app) {
- TEST_REQUIRE_HW_COUNTER();
TEST_REQUIRE_APPS();
+ SetRunInAppToolForTesting(false, true);
TestRecordingApps("com.android.simpleperf.profileable");
-}
+} \ No newline at end of file
diff --git a/simpleperf/cmd_stat_test.cpp b/simpleperf/cmd_stat_test.cpp
index ecc7404e..eb0fa2f7 100644
--- a/simpleperf/cmd_stat_test.cpp
+++ b/simpleperf/cmd_stat_test.cpp
@@ -296,10 +296,14 @@ static void TestStatingApps(const std::string& app_name) {
TEST(stat_cmd, app_option_for_debuggable_app) {
TEST_REQUIRE_APPS();
+ SetRunInAppToolForTesting(true, false);
+ TestStatingApps("com.android.simpleperf.debuggable");
+ SetRunInAppToolForTesting(false, true);
TestStatingApps("com.android.simpleperf.debuggable");
}
TEST(stat_cmd, app_option_for_profileable_app) {
TEST_REQUIRE_APPS();
+ SetRunInAppToolForTesting(false, true);
TestStatingApps("com.android.simpleperf.profileable");
}
diff --git a/simpleperf/environment.cpp b/simpleperf/environment.cpp
index 3591626e..ab537dcc 100644
--- a/simpleperf/environment.cpp
+++ b/simpleperf/environment.cpp
@@ -808,18 +808,35 @@ class SimpleperfAppRunner : public InAppRunner {
} // namespace
+static bool allow_run_as = true;
+static bool allow_simpleperf_app_runner = true;
+
+void SetRunInAppToolForTesting(bool run_as, bool simpleperf_app_runner) {
+ allow_run_as = run_as;
+ allow_simpleperf_app_runner = simpleperf_app_runner;
+}
+
bool RunInAppContext(const std::string& app_package_name, const std::string& cmd,
const std::vector<std::string>& args, size_t workload_args_size,
const std::string& output_filepath, bool need_tracepoint_events) {
- std::unique_ptr<InAppRunner> in_app_runner(new RunAs(app_package_name));
- if (!in_app_runner->Prepare()) {
+ std::unique_ptr<InAppRunner> in_app_runner;
+ if (allow_run_as) {
+ in_app_runner.reset(new RunAs(app_package_name));
+ if (!in_app_runner->Prepare()) {
+ in_app_runner = nullptr;
+ }
+ }
+ if (!in_app_runner && allow_simpleperf_app_runner) {
in_app_runner.reset(new SimpleperfAppRunner(app_package_name));
if (!in_app_runner->Prepare()) {
- LOG(ERROR) << "Package " << app_package_name
- << " doesn't exist or isn't debuggable/profileable.";
- return false;
+ in_app_runner = nullptr;
}
}
+ if (!in_app_runner) {
+ LOG(ERROR) << "Package " << app_package_name
+ << " doesn't exist or isn't debuggable/profileable.";
+ return false;
+ }
return in_app_runner->RunCmdInApp(cmd, args, workload_args_size, output_filepath,
need_tracepoint_events);
}
diff --git a/simpleperf/environment.h b/simpleperf/environment.h
index 173cdcc6..074c2320 100644
--- a/simpleperf/environment.h
+++ b/simpleperf/environment.h
@@ -104,6 +104,7 @@ void PrepareVdsoFile();
std::set<pid_t> WaitForAppProcesses(const std::string& package_name);
bool IsAppDebuggable(const std::string& package_name);
+void SetRunInAppToolForTesting(bool run_as, bool simpleperf_app_runner); // for testing only
bool RunInAppContext(const std::string& app_package_name, const std::string& cmd,
const std::vector<std::string>& args, size_t workload_args_size,
const std::string& output_filepath, bool need_tracepoint_events);