Updated patch-coverage.pl script 26/246126/1
authorDavid Steele <david.steele@samsung.com>
Fri, 23 Oct 2020 14:36:24 +0000 (15:36 +0100)
committerDavid Steele <david.steele@samsung.com>
Fri, 23 Oct 2020 14:36:24 +0000 (15:36 +0100)
Change-Id: If8394b2ababc4d6769b3ce04420c855778e0c4b5

automated-tests/README.md
automated-tests/patch-coverage.pl

index 590571d..f256435 100644 (file)
@@ -150,7 +150,7 @@ a refspec to the latest commit, or uses the index/working tree.
 Testing on target
 =================
 
-To build for target, first build and install dali-core, dali-adaptor and dali-toolkit, then build dali-capi without --keep-packs option.
+To build for target, first build and install dali-core, dali-adaptor and dali-toolkit.
 
 You will need to install libconfig-tiny-perl:
 
index 702dc0b..3a97dac 100755 (executable)
@@ -54,7 +54,7 @@ sub add_counts($$);
 sub info(@);
 
 our $repo = Git->repository();
-our $debug=1;
+our $debug=0;
 our $pd_debug=0;
 our $root;
 our %info_data; # Hash containing all data from .info files
@@ -1316,7 +1316,7 @@ my $cwd = getcwd(); # expect this to be automated-tests folder
 
 # execute coverage.sh, generating build/tizen/dali.info from lib, and
 # *.dir/dali.info. Don't generate html
-`coverage.sh -n`;
+print `./coverage.sh -n`;
 chdir "..";
 $root = getcwd();
 
@@ -1338,12 +1338,7 @@ foreach (@info_files)
 my @cmd=('--no-pager','diff','--no-ext-diff','-U0','--no-color');
 my $status = $repo->command("status", "-s");
 
-if(scalar(@ARGV)) # REMOVE ME
-{
-    # REMOVE ME - temp to get past modifying this script in place.
-    push @cmd, @ARGV;
-}
-elsif( $status eq "" && !scalar(@ARGV))
+if( $status eq "" && !scalar(@ARGV))
 {
     # There are no changes in the index or working tree, and
     # no diff arguments to append. Use the last patch instead.