Skip to content

Commit

Permalink
change argument style
Browse files Browse the repository at this point in the history
  • Loading branch information
pit-ray committed Jan 4, 2024
1 parent 745121e commit c4c311d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/core/version.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#ifndef _VERSION_HPP
#define _VERSION_HPP

#define WIN_VIND_VERSION "5.7.0.0"
#define WIN_VIND_VERSION "5.8.0.0"

#endif
2 changes: 1 addition & 1 deletion tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ The runtime test is implemented in python scripts.

### Run Test
```bash
$ python runtime/test.py --target "../bin_64/win-vind/win-vind.exe"
$ python runtime/test.py "../bin_64/win-vind/win-vind.exe"
```
2 changes: 1 addition & 1 deletion tests/runtime/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def do_test(exe_path):
if __name__ == '__main__':
parser = ArgumentParser()
parser.add_argument(
'--target', type=str, required=True,
'target', type=str,
help='Path of win-vind.exe to be test.')
args = parser.parse_args()

Expand Down

0 comments on commit c4c311d

Please sign in to comment.