aboutsummaryrefslogtreecommitdiff
path: root/seccomp_tools/mass_seccomp_editor/test_mass_seccomp_editor.py
diff options
context:
space:
mode:
Diffstat (limited to 'seccomp_tools/mass_seccomp_editor/test_mass_seccomp_editor.py')
-rwxr-xr-xseccomp_tools/mass_seccomp_editor/test_mass_seccomp_editor.py36
1 files changed, 0 insertions, 36 deletions
diff --git a/seccomp_tools/mass_seccomp_editor/test_mass_seccomp_editor.py b/seccomp_tools/mass_seccomp_editor/test_mass_seccomp_editor.py
deleted file mode 100755
index 3e7aa4cc..00000000
--- a/seccomp_tools/mass_seccomp_editor/test_mass_seccomp_editor.py
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/usr/bin/env python3
-
-# Copyright 2021 The Chromium OS Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-"""Unit tests for mass_seccomp_editor.py"""
-
-import unittest
-from unittest import mock
-
-import mass_seccomp_editor
-
-BASE_SECCOMP_CONTENTS = """
-fstat: 1
-poll: 1
-foobar: 1
-"""
-
-TEST_FP = 'foo'
-
-
-class TestMassSeccompEditor(unittest.TestCase):
- """Test the mass_seccomp_editor."""
-
- def test_check_missing_sycalls(self):
- """Test we can find missing syscalls."""
- with mock.patch('builtins.open',
- mock.mock_open(read_data=BASE_SECCOMP_CONTENTS)):
- out = mass_seccomp_editor.check_missing_syscalls(
- ['fstat', 'dup', 'fizzbuzz'], TEST_FP)
- self.assertEqual(out, set(['dup', 'fizzbuzz']))
-
-
-if __name__ == '__main__':
- unittest.main()