mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 14:07:55 +00:00
testsuite: 'ren' no longer needed.
This commit is contained in:
parent
b6a729c5f7
commit
d7961606b4
|
@ -181,6 +181,9 @@ for stable long-term use.
|
|||
|
||||
New in this release:
|
||||
|
||||
* Parallel Proxy Scraper & Checker Tool
|
||||
https://www.youtube.com/watch?v=iXCeR_XsP6o
|
||||
|
||||
* GNU Parallel was presented at Chiang Mai Bar Camp
|
||||
http://barcampchiangmai.org/
|
||||
See write up here:
|
||||
|
|
|
@ -2,7 +2,11 @@ testsuite: ../src/parallel tests-to-run/* wanted-results/* startdb prereqlocal p
|
|||
time sh Start.sh
|
||||
date
|
||||
|
||||
local: ../src/parallel tests-to-run/*local* wanted-results/*local* prereqlocal
|
||||
testdb: ../src/parallel tests-to-run/*sql* wanted-results/*sql* prereqdb
|
||||
time sh Start.sh sql
|
||||
date
|
||||
|
||||
testlocal: ../src/parallel tests-to-run/*local* wanted-results/*local* prereqlocal
|
||||
time sh Start.sh local
|
||||
date
|
||||
|
||||
|
@ -10,7 +14,6 @@ prereqlocal: installparallel
|
|||
seq 1 2 >/dev/null || (echo seq is required for testsuite; /bin/false)
|
||||
stdout echo || (echo stdout is required for testsuite; /bin/false)
|
||||
convert >/dev/null || (echo convert is required for testsuite; /bin/false)
|
||||
ren '$$_' a || (echo ren is required for testsuite; /bin/false)
|
||||
echo 1+2 | bc >/dev/null || (echo bc is required for testsuite; /bin/false)
|
||||
echo | gawk '{print "gawk is installed"}' || (echo gawk is required for testsuite; /bin/false)
|
||||
expect -c 'spawn cat; puts "expect is installed"' || (echo expect is required for testsuite; /bin/false)
|
||||
|
|
|
@ -4,8 +4,7 @@ rsync -Ha --delete input-files/testdir/ tmp/
|
|||
cd tmp
|
||||
|
||||
echo echo test of cat pipe sh | parallel -j 50 2>&1
|
||||
find . -name '*.jpg' | parallel -j +0 convert -geometry 120 {} {}_thumb.jpg
|
||||
find . -name '*_thumb.jpg' | ren 's:/([^/]+)_thumb.jpg$:/thumb_$1:'
|
||||
find . -name '*.jpg' | parallel -j +0 convert -geometry 120 {} {//}/thumb_{/}
|
||||
|
||||
ls | parallel ls | sort
|
||||
ls | parallel echo ls | sort
|
||||
|
|
|
@ -1,14 +1,11 @@
|
|||
#!/bin/bash
|
||||
|
||||
PAR=parallel
|
||||
|
||||
rm -rf tmp 2>/dev/null
|
||||
cp -a input-files/testdir2 tmp
|
||||
cd tmp
|
||||
|
||||
echo '### Test filenames containing UTF-8'
|
||||
find . -name '*.jpg' | $PAR -j +0 convert -geometry 120 {} {}_thumb.jpg
|
||||
find . -name '*_thumb.jpg' | ren 's:/([^/]+)_thumb.jpg$:/thumb_$1:'
|
||||
find . -name '*.jpg' | parallel -j +0 convert -geometry 120 {} {//}/thumb_{/}
|
||||
|
||||
find |grep -v CVS | sort
|
||||
|
||||
|
|
Loading…
Reference in a new issue