File: engine.py

package info (click to toggle)
plaso 20190131-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 410,832 kB
  • sloc: python: 76,636; sh: 926; makefile: 167; xml: 70; sql: 14; vhdl: 11
file content (34 lines) | stat: -rw-r--r-- 1,034 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Tests the multi-process processing engine."""

from __future__ import unicode_literals

import unittest

from tests import test_lib as shared_test_lib


class MultiProcessEngineTest(shared_test_lib.BaseTestCase):
  """Tests for the multi-process engine."""

  # TODO: add test for _AbortJoin
  # TODO: add test for _AbortKill
  # TODO: add test for _AbortTerminate
  # TODO: add test for _CheckStatusWorkerProcess
  # TODO: add test for _KillProcess
  # TODO: add test for _LogMemoryUsage
  # TODO: add test for _QueryProcessStatus
  # TODO: add test for _RaiseIfNotMonitored
  # TODO: add test for _RaiseIfNotRegistered
  # TODO: add test for _RegisterProcess
  # TODO: add test for _StartMonitoringProcess
  # TODO: add test for _StartStatusUpdateThread
  # TODO: add test for _StopMonitoringProcess
  # TODO: add test for _StopMonitoringProcesses
  # TODO: add test for _StopStatusUpdateThread
  # TODO: add test for _TerminateProcess


if __name__ == '__main__':
  unittest.main()