aboutsummaryrefslogtreecommitdiff
path: root/seccomp_tools/mass_seccomp_editor/test_mass_seccomp_editor.py
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-06-15 21:46:53 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-06-15 21:46:53 +0000
commitf17a03afeb2feac54dcbcf6b66cf3b582c3d144f (patch)
tree73936aba47fe1dc71e9cc05af9747036e935608c /seccomp_tools/mass_seccomp_editor/test_mass_seccomp_editor.py
parentfb05c036ea3bc0ffc7e7e530c04b0d9a066312cf (diff)
parent4e4201457e5f51a132101c611c79ccff9f713c8b (diff)
downloadtoolchain-utils-aml_tz3_314012010.tar.gz
Change-Id: I8c7d4dd2dae5ae34360857d359ae3a52d87c17f0
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()