#!/usr/bin/env python3 # Copyright (C) 2023 The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License a # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from python.generators.diff_tests.testing import DataPath from python.generators.diff_tests.testing import Csv from python.generators.diff_tests.testing import DiffTestBlueprint from python.generators.diff_tests.testing import TestSuite class GeckoParser(TestSuite): def test_gecko_samples_smoke(self): return DiffTestBlueprint( trace=DataPath('trace_processor_perf_as_gecko.json'), query=""" INCLUDE PERFETTO MODULE stacks.cpu_profiling; SELECT id, parent_id, name, mapping_name, self_count, cumulative_count FROM cpu_profiling_summary_tree LIMIT 10 """, out=Csv(''' "id","parent_id","name","mapping_name","self_count","cumulative_count" 0,"[NULL]","__libc_start_call_main","/usr/lib/x86_64-linux-gnu/libc.so.6",0,37030 1,0,"main","/usr/local/google/home/lalitm/perfetto/out/linux_clang_release/trace_processor_shell",0,37030 2,1,"perfetto::trace_processor::(anonymous namespace)::TraceProcessorMain(int, char**)","/usr/local/google/home/lalitm/perfetto/out/linux_clang_release/trace_processor_shell",0,37030 3,2,"perfetto::trace_processor::(anonymous namespace)::StartInteractiveShell(perfetto::trace_processor::(anonymous namespace)::InteractiveOptions const&)","/usr/local/google/home/lalitm/perfetto/out/linux_clang_release/trace_processor_shell",0,37029 4,3,"read","/usr/lib/x86_64-linux-gnu/libc.so.6",8,8 5,3,"cfree@GLIBC_2.2.5","/usr/lib/x86_64-linux-gnu/libc.so.6",1,1 6,2,"clock_gettime@@GLIBC_2.17","/usr/lib/x86_64-linux-gnu/libc.so.6",1,1 7,3,"perfetto::trace_processor::TraceProcessorImpl::ExecuteQuery(std::__Cr::basic_string, std::__Cr::allocator > const&)","/usr/local/google/home/lalitm/perfetto/out/linux_clang_release/trace_processor_shell",0,37020 8,7,"perfetto::trace_processor::PerfettoSqlEngine::ExecuteUntilLastStatement(perfetto::trace_processor::SqlSource)","/usr/local/google/home/lalitm/perfetto/out/linux_clang_release/trace_processor_shell",0,37020 9,8,"perfetto::trace_processor::PerfettoSqlEngine::ExecuteInclude(perfetto::trace_processor::PerfettoSqlParser::Include const&, perfetto::trace_processor::PerfettoSqlParser const&)","/usr/local/google/home/lalitm/perfetto/out/linux_clang_release/trace_processor_shell",0,37020 ''')) def test_gecko_samples_simpleperf_smoke(self): return DiffTestBlueprint( trace=DataPath('simpleperf_as_gecko.json'), query=""" INCLUDE PERFETTO MODULE stacks.cpu_profiling; SELECT id, parent_id, name, mapping_name, self_count, cumulative_count FROM cpu_profiling_summary_tree ORDER BY cumulative_count desc LIMIT 10 """, out=Csv(''' "id","parent_id","name","mapping_name","self_count","cumulative_count" 13260,"[NULL]","__start_thread","/apex/com.android.runtime/lib64/bionic/libc.so",0,5551 13261,13260,"__pthread_start(void*)","/apex/com.android.runtime/lib64/bionic/libc.so",0,5551 13262,13261,"art::Thread::CreateCallbackWithUffdGc(void*)","/apex/com.android.art/lib64/libart.so",0,3043 13263,13262,"art::Thread::CreateCallback(void*)","/apex/com.android.art/lib64/libart.so",2,3043 13266,13263,"art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)","/apex/com.android.art/lib64/libart.so",0,3036 13267,13266,"art_quick_invoke_stub","/apex/com.android.art/lib64/libart.so",0,3036 13268,13267,"java.lang.Thread.run","/system/framework/arm64/boot.oat",0,2159 0,"[NULL]","__libc_init","/apex/com.android.runtime/lib64/bionic/libc.so",0,1714 1,0,"main","/system/bin/app_process64",0,1714 2,1,"android::AndroidRuntime::start(char const*, android::Vector const&, bool)","/system/lib64/libandroid_runtime.so",0,1714 '''))