diff options
Diffstat (limited to '')
-rw-r--r-- | test/800-38a.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/800-38a.py b/test/800-38a.py index b029890..a8aa802 100644 --- a/test/800-38a.py +++ b/test/800-38a.py @@ -10,7 +10,7 @@ if __name__ == '__main__': parser.add_argument('--sde', '-e', action='store_true', help='use Intel SDE to run *.exe files') args = parser.parse_args() - tools = toolkit.Tools('C:\\build\\test\\Debug', use_sde=args.sde) + tools = toolkit.Tools(args.root, use_sde=args.sde) vectors = json.load(open('800-38a.json')) success = True for prefix in vectors: |