From c4c311dde11317e265785668f7d9b8d70328cc23 Mon Sep 17 00:00:00 2001 From: pit-ray Date: Thu, 4 Jan 2024 21:32:38 +0900 Subject: [PATCH] change argument style --- src/core/version.hpp | 2 +- tests/README.md | 2 +- tests/runtime/test.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/version.hpp b/src/core/version.hpp index dbff3470..4c40f8ae 100644 --- a/src/core/version.hpp +++ b/src/core/version.hpp @@ -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 diff --git a/tests/README.md b/tests/README.md index 6699ef37..08a8f644 100644 --- a/tests/README.md +++ b/tests/README.md @@ -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" ``` diff --git a/tests/runtime/test.py b/tests/runtime/test.py index d433c087..b2630456 100644 --- a/tests/runtime/test.py +++ b/tests/runtime/test.py @@ -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()