/hg/icedtea-web: Added script to clone reproducer skeleton
jvanek at icedtea.classpath.org
jvanek at icedtea.classpath.org
Fri Jul 10 19:49:27 UTC 2015
changeset 558f4ebe8685 in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=558f4ebe8685
author: Jiri Vanek <jvanek at redhat.com>
date: Fri Jul 10 21:49:21 2015 +0200
Added script to clone reproducer skeleton
* tests/reproducers/cloneReproducer.sh: new file. Helping script which can prepare new reproducer from old one by simple copy and sed.
diffstat:
ChangeLog | 6 ++++
tests/reproducers/cloneReproducer.sh | 44 ++++++++++++++++++++++++++++++++++++
2 files changed, 50 insertions(+), 0 deletions(-)
diffs (61 lines):
diff -r 01082f3b6119 -r 558f4ebe8685 ChangeLog
--- a/ChangeLog Fri Jul 10 19:11:44 2015 +0200
+++ b/ChangeLog Fri Jul 10 21:49:21 2015 +0200
@@ -1,3 +1,9 @@
+2015-07-10 Jiri Vanek <jvanek at redhat.com>
+
+ Added script to clone reproducer skeleton
+ * tests/reproducers/cloneReproducer.sh: new file. Helping script which can
+ prepare new reproducer from old one by simple copy and sed.
+
2015-07-10 Jiri Vanek <jvanek at redhat.com>
Added tests for signed applet/app using Permission attribute
diff -r 01082f3b6119 -r 558f4ebe8685 tests/reproducers/cloneReproducer.sh
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/reproducers/cloneReproducer.sh Fri Jul 10 21:49:21 2015 +0200
@@ -0,0 +1,44 @@
+#!/bin/sh
+#sh cloneReproducer SandboxSignedSandbox XYZ signed signed
+#when reprodcuer is well done, then only "id" is enough to replace in names and files. this scriptis doing it.
+#then of course you need to evaluate all asserst on your own
+
+from=$1
+to=$2
+
+familyFrom=$3
+familyTo=$4
+#^simple,signed,signed2,custom (script will proabbly not work fine for custom)
+#run from this dir, or use absolute path
+top=.
+#top=/home/jvanek/hg/icedtea-web/tests/reproducers
+
+srcDir=$top/$familyFrom
+destDir=$top/$familyTo
+
+desc=$destDir/$to
+src=$srcDir/$from
+drs="resources srcs testcases"
+
+tree $src
+
+mkdir -v $desc
+for x in $drs ; do
+ mkdir -v $desc/$x
+done
+
+tree $desc
+cp -vr $src/srcs/META-INF $desc/srcs/
+SED1="sed s/$from/$to/g"
+
+for x in $drs ; do
+ files=`ls $src/$x/`
+ for f in $files ; do
+ target=`echo $f | $SED1`
+ cat $src/$x/$f | $SED1 | sed "s/@Test/@Test FIXME!/g" > $desc/$x/$target
+ done
+done
+
+
+
+ls -lR $desc
More information about the distro-pkg-dev
mailing list