File: engine.py

package info (click to toggle)
plaso 20201007-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 519,924 kB
  • sloc: python: 79,002; sh: 629; xml: 72; sql: 14; vhdl: 11; makefile: 10
file content (34 lines) | stat: -rw-r--r-- 1,035 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 python3
# -*- 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()