#! /bin/bash # # This file is part of the LibreOffice project. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # #check that zzuf is installed hash zzuf &> /dev/null if [ $? -eq 1 ];then echo >&2 "zzuf not found. Please install and/or fix the PATH environment variable. Aborting" exit -1 fi #check that file(s) to fuzz are mentioned if [[ $# -eq 0 ]]; then echo "Usage: fuzzfiles.sh " echo "The generated fuzzed files will be output to the current working directory" echo "The fuzzed files will be named XYZ-ratio-NNNN where:" echo -e "\tXYZ: the original file name" echo -e "\tratio: the fuzz ratio (what % of bytes were fuzzed)" echo -e "\tNNNN: the mutation # for that file and ratio combo" exit -1 fi for file in $@; do if [ -d $file ]; then echo "$file is a directory. Only files are allowed" elif [ -e $file ]; then basename=${file##*/} #Sequence from 0.001 to 0.5 for ratio in `seq -w 1 2 500 | sed -e 's/^/0./'`; do echo "Fuzzing $file with ratio $ratio" for i in {1..1000}; do zzuf -r $ratio < $file > "$basename-$ratio-$i" done #end of for i in {1.. done #end of for ratio in ... fi #end if of file vailidity check done #end for file in $@ o.suokunlong.cn:88/cgit/lo/core/commit/?id=3ca1f32df446f2d1989f95cbb43163d961b29a1e'/> 3ca1f32df446f2d1989f95cbb43163d961b29a1e - Add SVG chart - Add more 32px icons (Writer) - etc Change-Id: I5b03300b9996589aa4bafdfd5d6473c9093509fe Reviewed-on: https://gerrit.libreoffice.org/81149 Tested-by: Jenkins Reviewed-by: Rizal Muttaqin <riz_17_oke@yahoo.co.id>
- Add SVG chart
- Add more 32px icons (Writer)
- etc

Change-Id: I5b03300b9996589aa4bafdfd5d6473c9093509fe
Reviewed-on: https://gerrit.libreoffice.org/81149
Tested-by: Jenkins
Reviewed-by: Rizal Muttaqin <riz_17_oke@yahoo.co.id>
Sifr icon theme update 2019-02-25T08:04:31+00:00 andreas kainz kainz.a@gmail.com 2019-02-24T21:58:21+00:00 21c277923aa4d095e63cc3c2358a6920bd7add9a Change-Id: I1e999451b1ec84ce963383d64edcfd0e3c7b820f Reviewed-on: https://gerrit.libreoffice.org/68296 Tested-by: Jenkins Reviewed-by: andreas_kainz <kainz.a@gmail.com>
Change-Id: I1e999451b1ec84ce963383d64edcfd0e3c7b820f
Reviewed-on: https://gerrit.libreoffice.org/68296
Tested-by: Jenkins
Reviewed-by: andreas_kainz <kainz.a@gmail.com>
Sifr icon theme update 2019-02-19T08:07:57+00:00 andreas kainz kainz.a@gmail.com 2019-02-18T23:46:17+00:00 afc337131439fdc265706ccf27ef8b5e86f824d0 Change-Id: I83ed6787b15245d11223cc054608b83f68647d9a Reviewed-on: https://gerrit.libreoffice.org/67993 Tested-by: Jenkins Reviewed-by: andreas_kainz <kainz.a@gmail.com>
Change-Id: I83ed6787b15245d11223cc054608b83f68647d9a
Reviewed-on: https://gerrit.libreoffice.org/67993
Tested-by: Jenkins
Reviewed-by: andreas_kainz <kainz.a@gmail.com>