Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package cvise for openSUSE:Factory checked 
in at 2021-04-19 21:06:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/cvise (Old)
 and      /work/SRC/openSUSE:Factory/.cvise.new.12324 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "cvise"

Mon Apr 19 21:06:31 2021 rev:33 rq:886690 version:2.3.0+git.20210419.7c7526b

Changes:
--------
--- /work/SRC/openSUSE:Factory/cvise/cvise.changes      2021-04-12 
15:49:57.785279285 +0200
+++ /work/SRC/openSUSE:Factory/.cvise.new.12324/cvise.changes   2021-04-19 
21:07:04.684126404 +0200
@@ -1,0 +2,6 @@
+Mon Apr 19 12:26:15 UTC 2021 - mli...@suse.cz
+
+- Update to version 2.3.0+git.20210419.7c7526b:
+  * Add --skip-interestingness-test-check (-s) argument.
+
+-------------------------------------------------------------------

Old:
----
  cvise-2.3.0+git.20210412.66ee8c1.tar.xz

New:
----
  cvise-2.3.0+git.20210419.7c7526b.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ cvise.spec ++++++
--- /var/tmp/diff_new_pack.klptC5/_old  2021-04-19 21:07:05.156127111 +0200
+++ /var/tmp/diff_new_pack.klptC5/_new  2021-04-19 21:07:05.160127118 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           cvise
-Version:        2.3.0+git.20210412.66ee8c1
+Version:        2.3.0+git.20210419.7c7526b
 Release:        0
 Summary:        Super-parallel Python port of the C-Reduce
 License:        BSD-3-Clause

++++++ cvise-2.3.0+git.20210412.66ee8c1.tar.xz -> 
cvise-2.3.0+git.20210419.7c7526b.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cvise-2.3.0+git.20210412.66ee8c1/cvise/cvise.py 
new/cvise-2.3.0+git.20210419.7c7526b/cvise/cvise.py
--- old/cvise-2.3.0+git.20210412.66ee8c1/cvise/cvise.py 2021-04-12 
12:09:23.000000000 +0200
+++ new/cvise-2.3.0+git.20210419.7c7526b/cvise/cvise.py 2021-04-19 
14:22:37.000000000 +0200
@@ -57,8 +57,9 @@
         'unifdef': UnIfDefPass,
     }
 
-    def __init__(self, test_manager):
+    def __init__(self, test_manager, skip_interestingness_test_check):
         self.test_manager = test_manager
+        self.skip_interestingness_test_check = skip_interestingness_test_check
         self.tidy = False
 
     @classmethod
@@ -127,7 +128,8 @@
 
     def reduce(self, pass_group, skip_initial):
         self._check_prerequisites(pass_group)
-        self.test_manager.check_sanity(True)
+        if not self.skip_interestingness_test_check:
+            self.test_manager.check_sanity(True)
 
         logging.info('===< {} >==='.format(os.getpid()))
         logging.info('running {} interestingness test{} in 
parallel'.format(self.test_manager.parallel_tests,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cvise-2.3.0+git.20210412.66ee8c1/cvise.py 
new/cvise-2.3.0+git.20210419.7c7526b/cvise.py
--- old/cvise-2.3.0+git.20210412.66ee8c1/cvise.py       2021-04-12 
12:09:23.000000000 +0200
+++ new/cvise-2.3.0+git.20210419.7c7526b/cvise.py       2021-04-19 
14:22:37.000000000 +0200
@@ -166,6 +166,7 @@
     parser.add_argument('--print-diff', action='store_true', default=False, 
help='Show changes made by transformations, for debugging')
     parser.add_argument('--save-temps', action='store_true', default=False, 
help="Don't delete /tmp/cvise-xxxxxx directories on termination")
     parser.add_argument('--skip-initial-passes', action='store_true', 
default=False, help='Skip initial passes (useful if input is already partially 
reduced)')
+    parser.add_argument('--skip-interestingness-test-check', '-s', 
action='store_true', default=False, help='Skip initial interestingness test 
check')
     parser.add_argument('--remove-pass', help='Remove all instances of the 
specified passes from the schedule (comma-separated)')
     parser.add_argument('--start-with-pass', help='Start with the specified 
pass')
     parser.add_argument('--no-timing', action='store_true', default=False, 
help='Do not print timestamps about reduction progress')
@@ -274,7 +275,7 @@
                                        args.die_on_pass_bug, args.print_diff, 
args.max_improvement, args.no_give_up, args.also_interesting,
                                        args.start_with_pass)
 
-    reducer = CVise(test_manager)
+    reducer = CVise(test_manager, args.skip_interestingness_test_check)
 
     reducer.tidy = args.tidy
 

Reply via email to