From: hyokeun.jeon Date: Thu, 20 May 2021 06:04:31 +0000 (+0900) Subject: Pre-ordered build list from file X-Git-Tag: submit/trunk/20210602.131730~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9b4a3530039ff9307988672abe54fd87c3fce3c8;p=tools%2Fdepanneur.git Pre-ordered build list from file Change-Id: I44d8abf881f1bd7f68cbf8301c24240acc1afcd1 --- diff --git a/depanneur b/depanneur index d28624d..51190af 100755 --- a/depanneur +++ b/depanneur @@ -2691,6 +2691,14 @@ sub prepare_preorder_list { my_system("rm -rf bsr_profiling_report"); if ($preordered_list ne "") { @preview_orders = split /[:,\s\/]+/, $preordered_list; + if (-e $preordered_list) { + if (open my $info, '<', $preordered_list) { + while (my $line = <$info>) { + push @preview_orders, (split /[:,\s\/]+/, $line); + } + close $info; + } + } } if ($profiling ne "" && `which bsr`) { my $preview_command = "bsr reorder -j $profiling ";