summaryrefslogtreecommitdiff
path: root/simpleperf/scripts/test/purgatorio_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'simpleperf/scripts/test/purgatorio_test.py')
-rw-r--r--simpleperf/scripts/test/purgatorio_test.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/simpleperf/scripts/test/purgatorio_test.py b/simpleperf/scripts/test/purgatorio_test.py
index ff862f4f..e814c42d 100644
--- a/simpleperf/scripts/test/purgatorio_test.py
+++ b/simpleperf/scripts/test/purgatorio_test.py
@@ -42,11 +42,3 @@ class TestPurgatorio(TestBase):
# Show original method name with proguard mapping file.
self.assertIn(original_methodname, self.get_report(
['--proguard-mapping-file', proguard_mapping_file, '-i', testdata_file]))
-
- def test_show_art_frames(self):
- art_frame_str = 'art::interpreter::DoCall'
- options = ['-i', TestHelper.testdata_path('perf_with_interpreter_frames.data')]
- report = self.get_report(options)
- self.assertIn(art_frame_str, report)
- report = self.get_report(options + ['--no-show-art-frames'])
- self.assertNotIn(art_frame_str, report)