Files
2026-04-29 23:01:54 +02:00

33 lines
797 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
set -e
#
# run normal mode
#
echo ''
echo \$ $NXF_RUN
$NXF_RUN | tee stdout
[[ `grep 'INFO' .nextflow.log | grep -c 'Submitted process > sayHello'` == 5 ]] || false
[[ `grep 'Hola world!' stdout` ]] || false
[[ `grep 'Γεια σου world!' stdout` ]] || false
[[ `grep 'Hello world!' stdout` ]] || false
[[ `grep 'Bojour world!' stdout` ]] || false
[[ `grep 'Ciao world!' stdout` ]] || false
#
# RESUME mode
#
echo ''
echo \$ $NXF_RUN -resume
$NXF_RUN -resume | tee stdout
[[ `grep 'INFO' .nextflow.log | grep -c 'Cached process > sayHello'` == 5 ]] || false
[[ `grep 'Hola world!' stdout` ]] || false
[[ `grep 'Γεια σου world!' stdout` ]] || false
[[ `grep 'Hello world!' stdout` ]] || false
[[ `grep 'Bojour world!' stdout` ]] || false
[[ `grep 'Ciao world!' stdout` ]] || false