fix menu.pl syntax highlighting in zed
This commit is contained in:
@ -46,10 +46,10 @@ my $db_port = "3306";
|
||||
my $db_user = "smchurla";
|
||||
|
||||
my %handlers = (
|
||||
'01. Build Experiments' => sub { do "$local_scripts_dir/build.pl"; },
|
||||
'01. Build Experiments' => sub { do qq{$local_scripts_dir/build.pl}; },
|
||||
|
||||
'02. Deploy Experiments (Mars)' =>
|
||||
sub { do "$local_scripts_dir/deploy.pl"; },
|
||||
sub { do qq{$local_scripts_dir/deploy.pl}; },
|
||||
|
||||
'03. Archive Experiments (Downloads from Mars)' => sub {
|
||||
|
||||
@ -211,7 +211,7 @@ my %handlers = (
|
||||
},
|
||||
|
||||
'10. Explore Experiment Results' =>
|
||||
sub { do "$local_scripts_dir/explore.pl" },
|
||||
sub { do qq{$local_scripts_dir/explore.pl}; },
|
||||
|
||||
'11. Compare Experiment Results' => sub {
|
||||
|
||||
|
||||
@ -219,14 +219,19 @@ sub inject {
|
||||
# "-Wf,--server-port=$fail_server_port",
|
||||
"-Wf,--state-dir=$remote_builds_dir/$experiment/state",
|
||||
"-Wf,--trap",
|
||||
|
||||
# Catch invalid instruction pointers
|
||||
"-Wf,--catch-outerspace",
|
||||
|
||||
# Messes with AOT compilation target if mmap memory is part of .text
|
||||
"-Wf,--catch-write-textsegment",
|
||||
|
||||
"-Wf,--timeout=500000",
|
||||
"-Wf,--ok-marker=fail_marker_positive",
|
||||
"-Wf,--fail-marker=fail_marker_negative",
|
||||
"-Wf,--detected-marker=fail_marker_detected",
|
||||
|
||||
# Called in WAMR exception handler
|
||||
# Called in WAMR exception handler (disable for C compilation target!)
|
||||
"-Wf,--group1-marker=fail_marker_group1",
|
||||
|
||||
">/dev/null 2>&1"
|
||||
|
||||
Reference in New Issue
Block a user