コード例 #1
0
 def test_ystats_format(self):
     requires_yappi()
     profile.start()
     profile.is_running()  # Let if profile something
     profile.stop()
     stats = yappi.YFuncStats()
     stats.add(FILENAME)
コード例 #2
0
ファイル: profileTests.py プロジェクト: vinzenz/vdsm
 def test_is_running(self):
     requires_yappi()
     self.assertFalse(profile.is_running())
     profile.start()
     try:
         self.assertTrue(profile.is_running())
     finally:
         profile.stop()
     self.assertFalse(profile.is_running())
コード例 #3
0
ファイル: profileTests.py プロジェクト: aiminickwong/vdsm
 def test_is_running(self):
     requires_yappi()
     self.assertFalse(profile.is_running())
     profile.start()
     try:
         self.assertTrue(profile.is_running())
     finally:
         profile.stop()
     self.assertFalse(profile.is_running())
コード例 #4
0
ファイル: profileTests.py プロジェクト: vinzenz/vdsm
 def test_ystats_format(self):
     requires_yappi()
     profile.start()
     profile.is_running()  # Let if profile something
     profile.stop()
     self.assertNotRaises(open_ystats, FILENAME)
コード例 #5
0
ファイル: profileTests.py プロジェクト: vinzenz/vdsm
 def profiled_function(self):
     self.assertTrue(profile.is_running())
コード例 #6
0
ファイル: profileTests.py プロジェクト: vinzenz/vdsm
 def test_disabled(self):
     profile.start()
     try:
         self.assertFalse(profile.is_running())
     finally:
         profile.stop()
コード例 #7
0
ファイル: profileTests.py プロジェクト: aiminickwong/vdsm
 def test_ystats_format(self):
     requires_yappi()
     profile.start()
     profile.is_running()  # Let if profile something
     profile.stop()
     self.assertNotRaises(open_ystats, FILENAME)
コード例 #8
0
ファイル: profileTests.py プロジェクト: aiminickwong/vdsm
 def profiled_function(self):
     self.assertTrue(profile.is_running())
コード例 #9
0
ファイル: profileTests.py プロジェクト: aiminickwong/vdsm
 def test_disabled(self):
     profile.start()
     try:
         self.assertFalse(profile.is_running())
     finally:
         profile.stop()
コード例 #10
0
 def test_pstats_format(self):
     requires_yappi()
     profile.start()
     profile.is_running()  # Let if profile something
     profile.stop()
     pstats.Stats(FILENAME)