commit cvise for openSUSE:Factory
Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package cvise for openSUSE:Factory checked in at 2022-11-30 15:00:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/cvise (Old) and /work/SRC/openSUSE:Factory/.cvise.new.1597 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "cvise" Wed Nov 30 15:00:29 2022 rev:61 rq:1039101 version:2.6.0+git.20221130.702f9d5 Changes: -------- --- /work/SRC/openSUSE:Factory/cvise/cvise.changes 2022-11-21 15:30:47.997015151 +0100 +++ /work/SRC/openSUSE:Factory/.cvise.new.1597/cvise.changes 2022-11-30 15:01:22.521847828 +0100 @@ -1,0 +2,12 @@ +Wed Nov 30 12:14:58 UTC 2022 - mliska@suse.cz + +- Update to version 2.6.0+git.20221130.702f9d5: + * Fix where we skip when --skip-after-n-transforms is used. + +------------------------------------------------------------------- +Mon Nov 21 11:53:34 UTC 2022 - mliska@suse.cz + +- Update to version 2.6.0+git.20221121.e753f5b: + * tweak logic in clangbinarysearch.py + +------------------------------------------------------------------- Old: ---- cvise-2.6.0+git.20221121.ff14486.tar.xz New: ---- cvise-2.6.0+git.20221130.702f9d5.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ cvise.spec ++++++ --- /var/tmp/diff_new_pack.YCImNz/_old 2022-11-30 15:01:23.005850668 +0100 +++ /var/tmp/diff_new_pack.YCImNz/_new 2022-11-30 15:01:23.013850716 +0100 @@ -17,7 +17,7 @@ Name: cvise -Version: 2.6.0+git.20221121.ff14486 +Version: 2.6.0+git.20221130.702f9d5 Release: 0 Summary: Super-parallel Python port of the C-Reduce License: BSD-3-Clause ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.YCImNz/_old 2022-11-30 15:01:23.077851091 +0100 +++ /var/tmp/diff_new_pack.YCImNz/_new 2022-11-30 15:01:23.077851091 +0100 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/marxin/cvise</param> - <param name="changesrevision">ff14486d5dfa3843230fc01970429d889752cee1</param></service></servicedata> + <param name="changesrevision">702f9d5a106b314e534139732888d0da0205ec5e</param></service></servicedata> (No newline at EOF) ++++++ cvise-2.6.0+git.20221121.ff14486.tar.xz -> cvise-2.6.0+git.20221130.702f9d5.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cvise-2.6.0+git.20221121.ff14486/cvise/passes/clangbinarysearch.py new/cvise-2.6.0+git.20221130.702f9d5/cvise/passes/clangbinarysearch.py --- old/cvise-2.6.0+git.20221121.ff14486/cvise/passes/clangbinarysearch.py 2022-11-21 12:00:03.000000000 +0100 +++ new/cvise-2.6.0+git.20221130.702f9d5/cvise/passes/clangbinarysearch.py 2022-11-30 13:13:04.000000000 +0100 @@ -22,7 +22,8 @@ instances = self.count_instances(test_case) took = time.monotonic() - start - if instances > best_count: + # prefer newer standard if the # of instances is equal + if instances >= best_count: best = std best_count = instances logging.debug('available transformation opportunities for %s: %d, took: %.2f s' % (std, instances, took)) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cvise-2.6.0+git.20221121.ff14486/cvise/utils/testing.py new/cvise-2.6.0+git.20221130.702f9d5/cvise/utils/testing.py --- old/cvise-2.6.0+git.20221121.ff14486/cvise/utils/testing.py 2022-11-21 12:00:03.000000000 +0100 +++ new/cvise-2.6.0+git.20221130.702f9d5/cvise/utils/testing.py 2022-11-30 13:13:04.000000000 +0100 @@ -535,16 +535,16 @@ f'{MAX_PASS_INCREASEMENT_THRESHOLD * 100}%)') break - # skip after N transformations if requested - if self.skip_after_n_transforms and success_count >= self.skip_after_n_transforms: - logging.info(f'skipping after {success_count} successful transformations') - break - self.release_folders() self.futures.clear() if not success_env: break + # skip after N transformations if requested + if self.skip_after_n_transforms and success_count >= self.skip_after_n_transforms: + logging.info(f'skipping after {success_count} successful transformations') + break + # Cache result of this pass if not self.no_cache: with open(test_case, mode='rb') as tmp_file:
participants (1)
-
Source-Sync