Skip to content

Commit

Permalink
Add check for gasnet runwrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
Pansysk75 committed Oct 31, 2023
1 parent e6dcbe3 commit e01cf7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/templates/hpxrun.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def check_options(parser, options, args):
sys.exit(1)

check_valid_runwrapper = (lambda x:
x == 'none' or x == 'mpi' or x == 'srun' or x =='jsrun');
x == 'none' or x == 'mpi' or x == 'srun' or x =='jsrun' or x == 'gasnet');
if not check_valid_runwrapper(options.runwrapper):
print('Error: Runwrapper option not valid\n', sys.stderr)
parser.print_help()
Expand Down

0 comments on commit e01cf7a

Please sign in to comment.