mirror of
https://github.com/SELinuxProject/setools
synced 2025-04-01 22:58:12 +00:00
commit
d7ca8d7dee
@ -6,7 +6,7 @@ env:
|
|||||||
global:
|
global:
|
||||||
# LIBSEPOLA needed by the Makefiles.
|
# LIBSEPOLA needed by the Makefiles.
|
||||||
- USERSPACE_SRC=$TRAVIS_BUILD_DIR/selinux-src
|
- USERSPACE_SRC=$TRAVIS_BUILD_DIR/selinux-src
|
||||||
- SELINUX_USERSPACE_VERSION=libsepol-2.8
|
- SELINUX_USERSPACE_VERSION=libsepol-3.0
|
||||||
- SEPOL_SRC=$USERSPACE_SRC/libsepol
|
- SEPOL_SRC=$USERSPACE_SRC/libsepol
|
||||||
- LIBSEPOLA=$SEPOL_SRC/src/libsepol.a
|
- LIBSEPOLA=$SEPOL_SRC/src/libsepol.a
|
||||||
- SELINUX_SRC=$USERSPACE_SRC/libselinux
|
- SELINUX_SRC=$USERSPACE_SRC/libselinux
|
||||||
|
@ -17,7 +17,7 @@ To run SETools command line tools, the following packages are required:
|
|||||||
* NetworkX 2.0+
|
* NetworkX 2.0+
|
||||||
* setuptools
|
* setuptools
|
||||||
* libselinux
|
* libselinux
|
||||||
* libsepol 2.8+
|
* libsepol 3.0+
|
||||||
|
|
||||||
To run SETools graphical tools, the following packages are also required:
|
To run SETools graphical tools, the following packages are also required:
|
||||||
* PyQt5
|
* PyQt5
|
||||||
|
@ -115,7 +115,8 @@ class DomainTransitionAnalysis:
|
|||||||
# NodeNotFound: the type is valid but not in graph, e.g. excluded
|
# NodeNotFound: the type is valid but not in graph, e.g. excluded
|
||||||
# NetworkXNoPath: no paths or the target type is
|
# NetworkXNoPath: no paths or the target type is
|
||||||
# not in the graph
|
# not in the graph
|
||||||
yield self.__generate_steps(nx.shortest_path(self.subG, s, t))
|
# pylint: disable=unexpected-keyword-arg, no-value-for-parameter
|
||||||
|
yield self.__generate_steps(nx.shortest_path(self.subG, source=s, target=t))
|
||||||
|
|
||||||
def all_paths(self, source, target, maxlen=2):
|
def all_paths(self, source, target, maxlen=2):
|
||||||
"""
|
"""
|
||||||
|
@ -129,7 +129,8 @@ class InfoFlowAnalysis:
|
|||||||
# excluded or disconnected due to min weight
|
# excluded or disconnected due to min weight
|
||||||
# NetworkXNoPath: no paths or the target type is
|
# NetworkXNoPath: no paths or the target type is
|
||||||
# not in the graph
|
# not in the graph
|
||||||
yield self.__generate_steps(nx.shortest_path(self.subG, s, t))
|
# pylint: disable=unexpected-keyword-arg, no-value-for-parameter
|
||||||
|
yield self.__generate_steps(nx.shortest_path(self.subG, source=s, target=t))
|
||||||
|
|
||||||
def all_paths(self, source, target, maxlen=2):
|
def all_paths(self, source, target, maxlen=2):
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user