diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-07-18 03:02:52 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-07-18 03:02:52 +0300 |
commit | 205d57b71c24630c37490a641658977461687165 (patch) | |
tree | cc297abebce1817bf74195fa4d0afdc97d33587e /test/toolkit.py | |
parent | README updates (diff) | |
download | aes-tools-205d57b71c24630c37490a641658977461687165.tar.gz aes-tools-205d57b71c24630c37490a641658977461687165.zip |
test/toolkit.py: drop the .exe extension
Diffstat (limited to 'test/toolkit.py')
-rw-r--r-- | test/toolkit.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/toolkit.py b/test/toolkit.py index 095127d..2fbab7d 100644 --- a/test/toolkit.py +++ b/test/toolkit.py @@ -73,10 +73,10 @@ class Tools: os.environ['PATH'] += os.pathsep + str(search_dirs) self._use_sde = use_sde - _ENCRYPT_BLOCK = 'encrypt_block.exe' - _DECRYPT_BLOCK = 'decrypt_block.exe' - _ENCRYPT_FILE = 'encrypt_file.exe' - _DECRYPT_FILE = 'decrypt_file.exe' + _ENCRYPT_BLOCK = 'encrypt_block' + _DECRYPT_BLOCK = 'decrypt_block' + _ENCRYPT_FILE = 'encrypt_file' + _DECRYPT_FILE = 'decrypt_file' def run(self, tool_path, args): cmd_list = ['sde', '--', tool_path] if self._use_sde else [tool_path] |