only deploy "fail" targets, only gdb "linux" targets, only import new results into ghidra

This commit is contained in:
2026-04-21 01:06:57 +02:00
parent 0dbcaf68cd
commit 51fb2ef4d4
2 changed files with 14 additions and 5 deletions

View File

@ -22,7 +22,7 @@ my $remote_runner = "$remote_root/scripts/runner.pl";
my $remote_log = "$remote_root/runner.log";
# Upload new experiments
my @experiments = Util::find_subdirs($local_builds_dir);
my @experiments = grep { /fail/ } Util::find_subdirs($local_builds_dir);
my @selected_experiments =
TUI::select_from_list( "Select Experiments to Run", 1, @experiments );
die "No experiment selected" unless @selected_experiments;