Skip to content

Commit

Permalink
Merge pull request #812 from adi-g15-ibm/feat-allow-usage-from-anywhere
Browse files Browse the repository at this point in the history
Enable op-test to be used from anywhere
  • Loading branch information
PraveenPenguin authored Mar 21, 2024
2 parents 8b9601c + a4af720 commit 499ccba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion OpTestConfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ def __init__(self):
self.cronus = OpTestCronus(self)
self.args = []
self.remaining_args = []
self.basedir = os.path.dirname(sys.argv[0])
self.basedir = os.path.abspath(os.path.dirname(__file__))
self.signal_ready = False # indicator for properly initialized
self.atexit_ready = False # indicator for properly initialized
self.aes_print_helpers = True # Need state for locker_wait
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ After cloning FWTS see the README for pre-reqs and how-to,
be sure to 'make install' after building to get the proper
paths setup.

git clone git://kernel.ubuntu.com/hwe/fwts.git
git clone https://github.com/fwts/fwts

It must also have (package names for Debian/Ubuntu systems):

Expand Down

0 comments on commit 499ccba

Please sign in to comment.